From 5ae19fb332ff52c606a632596e29320c26664b4c Mon Sep 17 00:00:00 2001 From: Lukas Pioch Date: Sat, 17 Oct 2015 21:04:49 +0200 Subject: Debug mode: Fixed assertion, if player below y < 0 --- src/Entities/Player.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Entities/Player.cpp b/src/Entities/Player.cpp index 57bf382d4..bc8a0db51 100644 --- a/src/Entities/Player.cpp +++ b/src/Entities/Player.cpp @@ -465,7 +465,7 @@ void cPlayer::SetTouchGround(bool a_bTouchGround) !IsSwimming() && !IsFlying() && ( ( - ((GetPosY() >= 1) && ((GetPosY() - POSY_TOINT) <= EPS)) && + ((GetPosY() >= 1) && (GetPosY() <= 255) && ((GetPosY() - POSY_TOINT) <= EPS)) && ( cBlockInfo::IsSolid(GetWorld()->GetBlock((GetPosition() + Vector3d(0, -1, 0)).Floor())) || cBlockInfo::IsSolid(GetWorld()->GetBlock((GetPosition() + Vector3d(HalfWidth, -1, 0)).Floor())) || @@ -475,7 +475,7 @@ void cPlayer::SetTouchGround(bool a_bTouchGround) ) ) || ( - ((GetPosY() >= POSY_TOINT) && ((GetPosY() - (POSY_TOINT + 0.5)) <= EPS)) && + (((GetPosY() >= 1) && (GetPosY() <= 255) && GetPosY() >= POSY_TOINT) && ((GetPosY() - (POSY_TOINT + 0.5)) <= EPS)) && ( cBlockSlabHandler::IsAnySlabType(GetWorld()->GetBlock((GetPosition() + Vector3d(0, 0, 0)).Floor())) || cBlockSlabHandler::IsAnySlabType(GetWorld()->GetBlock((GetPosition() + Vector3d(HalfWidth, 0, 0)).Floor())) || @@ -485,7 +485,7 @@ void cPlayer::SetTouchGround(bool a_bTouchGround) ) ) || ( - (fmod(GetPosY(), 0.125) <= EPS) && + ((GetPosY() >= 1) && (GetPosY() <= 255) && fmod(GetPosY(), 0.125) <= EPS) && ( (GetWorld()->GetBlock((GetPosition() + Vector3d(0, 0, 0)).Floor()) == E_BLOCK_SNOW) || (GetWorld()->GetBlock((GetPosition() + Vector3d(HalfWidth, 0, 0)).Floor()) == E_BLOCK_SNOW) || -- cgit v1.2.3